home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / sys / RCS / ttydev.h,v < prev    next >
Encoding:
Text File  |  1989-07-14  |  1.3 KB  |  105 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.3
  10. date     89.07.14.09.15.39;  author rab;  state Exp;
  11. branches ;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     88.06.29.14.48.26;  author ouster;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     88.06.21.16.12.57;  author ouster;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.3
  30. log
  31. @*** empty log message ***
  32. @
  33. text
  34. @/*
  35.  * Copyright (c) 1982, 1986 Regents of the University of California.
  36.  * All rights reserved.  The Berkeley software License Agreement
  37.  * specifies the terms and conditions for redistribution.
  38.  *
  39.  *    @@(#)ttydev.h    7.2 (Berkeley) 10/13/86
  40.  */
  41.  
  42. /*
  43.  * Terminal definitions related to underlying hardware.
  44.  */
  45. #ifndef _TTYDEV
  46. #define    _TTYDEV
  47.  
  48. /*
  49.  * Speeds
  50.  */
  51. #define B0    0
  52. #define B50    1
  53. #define B75    2
  54. #define B110    3
  55. #define B134    4
  56. #define B150    5
  57. #define B200    6
  58. #define B300    7
  59. #define B600    8
  60. #define B1200    9
  61. #define    B1800    10
  62. #define B2400    11
  63. #define B4800    12
  64. #define B9600    13
  65. #define EXTA    14
  66. #define EXTB    15
  67.  
  68. #endif /* _TTYDEV */
  69. @
  70.  
  71.  
  72. 1.2
  73. log
  74. @Add ifdefs to prevent files from being included multiple times.
  75. @
  76. text
  77. @d35 1
  78. a35 1
  79. #endif _TTYDEV
  80. @
  81.  
  82.  
  83. 1.1
  84. log
  85. @Initial revision
  86. @
  87. text
  88. @d12 2
  89. a13 2
  90. #ifndef _TTYDEV_
  91. #define    _TTYDEV_
  92. d35 1
  93. a35 10
  94. #ifdef KERNEL
  95. /*
  96.  * Modem control commands.
  97.  */
  98. #define    DMSET        0
  99. #define    DMBIS        1
  100. #define    DMBIC        2
  101. #define    DMGET        3
  102. #endif
  103. #endif
  104. @
  105.